home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1996 March
/
EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso
/
earcd
/
dtype
/
txtdt392.lha
/
textdtpatch
/
SMakefile
< prev
next >
Wrap
Makefile
|
1995-11-13
|
2KB
|
77 lines
#
# $PROJECT: text.datatype patch
#
# $VER: SMakefile 39.1 (03.07.95)
#
# by
#
# Stefan Ruppert , Windthorststrasse 5 , 65439 Floersheim , GERMANY
#
# (C) Copyright 1995
# All Rights Reserved !
#
# $HISTORY:
#
# 03.07.95 : 039.001 : initial
#
VERSION = 39
REVISION = 2
NAME = textdtpatch
SRCS = $(NAME).c
DOC = $(NAME).doc
OBJS = $(NAME).o
LHA = Release:$(NAME)$(VERSION).$(REVISION).lha
README = Release:$(NAME)$(VERSION).$(REVISION).readme
##############################################################################
#
# SAS definition
#
# DEBUG = DEBUG=LINE DEFINE=DEBUG
DEBUG =
SCOPTS = VERBOSE NOSTKCHK NOGST
SLOPT = NOICONS VERBOSE SMALLDATA SMALLCODE
# SCOPTIMIZE =
SCOPTIMIZE = OPT OPTTIME
LIB = lib:amiga.lib lib:sc.lib lib:debug.lib
all: $(NAME)
$(OBJS): $(SRCS)
sc $(DEBUG) $(SCOPTS) $(SCOPTIMIZE) $*.c
$(NAME): $(OBJS)
slink FROM $*.o TO $@ $(SLOPT) LIB $(LIB)
documentation: $(DOC)
$(DOC): $(SRCS)
makedoc $(SRCS) AUTODOC $(DOC) TABS 3 VERBOSE NOICON
release: $(NAME) $(DOC) $(LHA) $(README)
$(LHA): $(SRCS) $(NAME)
echo "cd /*nlha -r r $(LHA) $(NAME) $(NAME).info" >pipe:lha
execute pipe:lha
$(README): $(DOC)
echo "Short: V$(VERSION).$(REVISION) patches text.datatype to support searching" >t:readme
echo "Author: ruppert@goofy.zdv.uni-mainz.de" >>t:readme
echo "Uploader: ruppert@goofy.zdv.uni-mainz.de" >>t:readme
echo "Type: util/dtype*n" >>t:readme
type $(DOC) >>t:readme
copy t:readme $(README)
delete t:readme
##############################################################################
#
# clean up
#
clean:
delete $(NAME)